dynamic storage allocation - traducción al árabe
Diclib.com
Diccionario ChatGPT
Ingrese una palabra o frase en cualquier idioma 👆
Idioma:

Traducción y análisis de palabras por inteligencia artificial ChatGPT

En esta página puede obtener un análisis detallado de una palabra o frase, producido utilizando la mejor tecnología de inteligencia artificial hasta la fecha:

  • cómo se usa la palabra
  • frecuencia de uso
  • se utiliza con más frecuencia en el habla oral o escrita
  • opciones de traducción
  • ejemplos de uso (varias frases con traducción)
  • etimología

dynamic storage allocation - traducción al árabe

COMPUTER MEMORY MANAGEMENT METHODOLOGY IN WHICH THE PROGRAMMER EXPLICITLY CONTROLS ALLOCATION AND DEALLOCATION
Dynamic allocation; Custom memory allocation; Heap allocation

dynamic storage allocation      
التوزيع الديناميكي لسعة الذاكرة
deallocation         
  • An example of external fragmentation
COMPUTER RESOURCE MANAGEMENT OF MEMORY, INVOLVING ALLOCATION AND DEALLOCATION
Memory allocation; Dynamic memory allocation; Heap-based memory allocation; Heap (programming); Heap-Based Memory Allocation; Dynamic storage; Dynamic Memory Allocation; Heap space; Heap management; Dynamic memory; HP-UX Memory Management; Allocation algorithms; Allocation Algorithms; Heap memory; Dynamic memory management; Heap compaction; Free store (programming); Free a memory location; Freeing memory; Allocate a memory location; Memory deallocation; Dynamic memory deallocation; Stack and heap; Memory allocator; Fixed-size blocks allocation; Fixed-size-blocks allocation; Deallocation; Free store (computing); Heap (memory management); Allocating and deallocating memory; Dynamically-allocated memory; Not enough memory; Insufficient memory; Memory usage; Heap memory allocation
توقف نهائي.
dynamic memory         
  • An example of external fragmentation
COMPUTER RESOURCE MANAGEMENT OF MEMORY, INVOLVING ALLOCATION AND DEALLOCATION
Memory allocation; Dynamic memory allocation; Heap-based memory allocation; Heap (programming); Heap-Based Memory Allocation; Dynamic storage; Dynamic Memory Allocation; Heap space; Heap management; Dynamic memory; HP-UX Memory Management; Allocation algorithms; Allocation Algorithms; Heap memory; Dynamic memory management; Heap compaction; Free store (programming); Free a memory location; Freeing memory; Allocate a memory location; Memory deallocation; Dynamic memory deallocation; Stack and heap; Memory allocator; Fixed-size blocks allocation; Fixed-size-blocks allocation; Deallocation; Free store (computing); Heap (memory management); Allocating and deallocating memory; Dynamically-allocated memory; Not enough memory; Insufficient memory; Memory usage; Heap memory allocation
ذاكرة ديناميكية

Definición

memory management
<memory management, storage> A collection of techniques for providing sufficient memory to one or more processes in a computer system, especially when the system does not have enough memory to satisfy all processes' requirements simultaneously. Techniques include swapping, paging and virtual memory. Memory management is usually performed mostly by a hardware memory management unit. (1995-01-23)

Wikipedia

Manual memory management

In computer science, manual memory management refers to the usage of manual instructions by the programmer to identify and deallocate unused objects, or garbage. Up until the mid-1990s, the majority of programming languages used in industry supported manual memory management, though garbage collection has existed since 1959, when it was introduced with Lisp. Today, however, languages with garbage collection such as Java are increasingly popular and the languages Objective-C and Swift provide similar functionality through Automatic Reference Counting. The main manually managed languages still in widespread use today are C and C++ – see C dynamic memory allocation.